home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-03-17 | 879 b | 33 lines | [TEXT/MPS ] |
- //---------------------------------------------------------------------
- //
- // Copyright © 1992 David Peterson.
- // All rights reserved.
- //
- // Permission to use, copy, modify, and distribute this software for
- // any purpose and without fee is hereby granted, provided that the
- // above copyright notice appear in all copies and that both that
- // copyright notice and this permission notice appear in supporting
- // documentation.
- //
- //---------------------------------------------------------------------
-
- #ifndef __DAEMONAPP__
- #include <DaemonApp.h>
- #endif
- #ifndef __MACTCPCOMMONTYPES__
- #include <MacTCPCommonTypes.h>
- #endif
-
- class TalkD : public DaemonApp {
- typedef DaemonApp Inherited;
- public:
- virtual void InstallAEHandlers();
-
- void HandleNewStream(StreamPtr stream);
- };
-
- extern "C" {
- pascal OSErr AEStreamHandler(AppleEvent *messagein, AppleEvent *reply, long refIn);
- }
-
-